fix(coq/cno): drop cno_decidable axiom (Rice's theorem territory)#36
Merged
Conversation
Owner-ruled drop. Universal decidability of is_CNO over arbitrary programs asks for a constructive decision procedure over an unbounded state space (Memory, Registers, IOState all unbounded; is_CNO's universally-quantified clauses range over all states). This is essentially the Rice's theorem situation: deciding a non-trivial semantic property of an arbitrary program is undecidable. Net axiom count in proofs/coq/common/CNO.v: 3 -> 2 with this commit. Refs hyperpolymath/standards#124, scoping doc standards#157 (Stage 3). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This was referenced May 20, 2026
🔍 Hypatia Security ScanFindings: 64 issues detected
View findings[
{
"reason": "Stray AI.a2ml in root -- use 0-AI-MANIFEST.a2ml only",
"type": "banned",
"file": "AI.a2ml",
"action": "delete",
"rule_module": "root_hygiene",
"severity": "high"
},
{
"reason": "Superseded by 0-AI-MANIFEST.a2ml",
"type": "banned",
"file": "AI.djot",
"action": "delete",
"rule_module": "root_hygiene",
"severity": "high"
},
{
"reason": "No test directory or test files found",
"type": "no_tests",
"file": "/home/runner/work/absolute-zero/absolute-zero",
"action": "flag",
"rule_module": "honest_completion",
"severity": "high",
"deduction": 20
},
{
"reason": "Issue in quality.yml",
"type": "missing_workflow",
"file": "quality.yml",
"action": "create",
"rule_module": "workflow_audit",
"severity": "high"
},
{
"reason": "Issue in security-policy.yml",
"type": "missing_workflow",
"file": "security-policy.yml",
"action": "create",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "Action hyperpolymath/standards/.github/workflows/governance-reusable.yml@main needs attention",
"type": "unpinned_action",
"file": "governance.yml",
"action": "pin_sha",
"rule_module": "workflow_audit",
"severity": "high"
},
{
"reason": "Action actions/checkout@v6.0.2 needs attention",
"type": "unpinned_action",
"file": "jekyll-gh-pages.yml",
"action": "pin_sha",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "Action actions/configure-pages@v6 needs attention",
"type": "unpinned_action",
"file": "jekyll-gh-pages.yml",
"action": "pin_sha",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "Action actions/jekyll-build-pages@v1 needs attention",
"type": "unpinned_action",
"file": "jekyll-gh-pages.yml",
"action": "pin_sha",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "Action actions/upload-pages-artifact@v5 needs attention",
"type": "unpinned_action",
"file": "jekyll-gh-pages.yml",
"action": "pin_sha",
"rule_module": "workflow_audit",
"severity": "medium"
}
]Powered by Hypatia Neurosymbolic CI/CD Intelligence |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Salvaged from #25 — the only commit on that branch with content not already on
mainin some form.What
Drops
Axiom cno_decidable : forall p, {is_CNO p} + {~ is_CNO p}fromproofs/coq/common/CNO.v(owner ruling, Stage 3 of standards#157).Replaces the axiom line with a doc comment explaining why: universal decidability of `is_CNO` over arbitrary programs asks for a constructive decision procedure over an unbounded state space (`Memory : nat -> nat`, unbounded registers, unbounded I/O traces), and `is_CNO`'s universally-quantified clauses range over all of them — Rice's-theorem territory, not constructively achievable.
Verification
coqc -R common CNO common/CNO.v— builds clean locally on Coq 8.18.0.grep -rn cno_decidable proofs/— only the new doc-comment reference remains; no theorem in the corpus depended on it.Provenance
Cherry-pick of
8b78d27from #25. The other commit on #25 (89deef7, eval_respects_state_eq via existential reformulation) is not salvaged here becausemainalready discharges those two axioms a different way (#2699ec572, deletion + downstream refactor) — the existential approach is competing, not additive.Closes #25 once merged; #33 and #35 closed as superseded separately.
Refs standards#124, standards#157.
🤖 Generated with Claude Code
Co-Authored-By: Claude Opus 4.7 (1M context) noreply@anthropic.com